home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / INFO / PROGUIDE.ZIP / GO.BAT < prev    next >
DOS Batch File  |  1990-06-11  |  6KB  |  124 lines

  1. echo off
  2. cls
  3. dir /w
  4. echo  
  5. echo The documentation for this program is stored in files on the disk.
  6. echo Look at the file names above for names with README or MANUAL or DOC in them.
  7. echo You can view these text files on the screen by entering at the DOS prompt:
  8. echo                             TYPE filename.ext
  9. echo           (substitute the actual filename and extension, of course)
  10. echo This will cause the documentation to scroll by faster than you can read it.
  11. echo So we recommend the use of a utility such as Vernon Buerg's LIST program
  12. echo that will let you scroll and page up and down through a file. LIST is on disk
  13. echo 1-UT-274 in The Public (Software) Library, P.O.Box 35705, Houston, TX 77235.
  14. echo  
  15. echo You can also print the documentation by entering at the DOS prompt:
  16. echo                            COPY filename.ext PRN
  17. echo            (for more info on TYPE and COPY, see your DOS manual)
  18. echo  
  19. pause
  20. cls
  21. echo  
  22. echo If there are any batch files on the disk (files with a BAT extension), they
  23. echo may help you get going, but it's a good idea to see what they will do before
  24. echo executing them. To do this, at the DOS prompt just enter
  25. echo                              TYPE filename.BAT
  26. echo Some programs have batch files that will print the documentation for you.
  27. echo  
  28. echo A very few programs don't have documentation files.
  29. echo They are self-documenting when run.
  30. echo  
  31. echo Programs with an extension of BAS require you to load BASIC, BASICA or GWBASIC
  32. echo to run the program. Please read your DOS & BASIC manuals for more information.
  33. echo  
  34. echo If you still have questions about how to get the documentation or how to run
  35. echo the programs, get the "Introductory" disk from the Public (Software) Library.
  36. echo  
  37. echo DO NOT WORK FROM THIS DISK. First read the documentation on this disk then copy
  38. echo by file name to another disk only the files that you need to run the program
  39. echo and use that disk as your working disk. If anything goes wrong, recopy the
  40. echo files from this disk. Always keep backups of all your important files.
  41. echo  
  42. pause
  43. cls
  44. echo  
  45. echo Files with an extension of ARC contain one or more compressed files.
  46. echo Use an ARC utility to extract the files. (See 1-UT-272 BBS/Library Tools.)
  47. echo  
  48. echo VIDEO: If you do not have a color monitor, you should get BWVID on the Video
  49. echo Utilities Disk (2-UT-280) to make colored text readable. If you have a Hercules
  50. echo mono-graphics card (or compatible), you will need the Hercules Utilities disk
  51. echo to run graphics program that were not written specifically for the Hercules.
  52. echo  
  53. echo Some programs require that you have ANSI.SYS in your CONFIG.SYS file. See your
  54. echo DOS manual for more information.
  55. echo  
  56. echo PRINTERS: Programs that use printer graphics or other special printer features
  57. echo often only support Epson/IBM and compatible printers unless otherwise stated.
  58. echo  
  59. echo However, most programs only print plain text to the screen and printer and
  60. echo should work on any system unless otherwise indicated.
  61. echo  
  62. echo Programs and disk copies are tested. Do not return disks without a postage-paid
  63. echo self-addressed return mailer unless we have acknowledged a problem first.
  64. echo Please read the file PROBLEM.DOC which is on many of our disks.
  65. echo  
  66. pause
  67. cls
  68. echo  
  69. echo                         The Public (Software) Library
  70. echo                    P.O.Box 35705  Houston, TX 35705-5705
  71. echo                                (713) 524-6394
  72. echo  
  73. echo         Our software library  is the result  of a great  deal of hard
  74. echo         work  and  expense  in  acquiring,  testing,  organizing  and
  75. echo         supporting public domain and shareware programs.
  76. echo  
  77. echo         The disk fee  which you have  paid to us  covers our cost  of
  78. echo         providing the above (and other) services. It does not include
  79. echo         any compensation to the author of the program.
  80. echo  
  81. echo         Most small programs that were quickly and easily written  and
  82. echo         require no updates nor support are public domain.  The author
  83. echo         asks  nothing  in return  and gets his satisfaction just from
  84. echo         knowing that others are using and enjoying his work.
  85. echo  
  86. echo         However, most of the large programs (and sometimes the small,
  87. echo         but complex  programs) required  an extensive  amount of pro-
  88. echo         gramming, debugging, testing, documenting and will benefit by
  89. echo         future enhancements and on-going support.
  90. echo  
  91. pause
  92. cls
  93. echo  
  94. echo         Many of these programs  are commercial quality or  better and
  95. echo         most are copyrighted,  but  the authors allow their  programs
  96. echo         to be copied so  that others can try  them. This is known  as
  97. echo         Shareware. (But not all programs in our library may be freely
  98. echo         copied. Check the documentation for each.)
  99. echo  
  100. echo         The documentation file on this disk will tell you the  amount
  101. echo         that the author would like to receive if you try the  program
  102. echo         and  decide  to  keep  using  it.  To encourage payment, some
  103. echo         programmers offer more advanced versions, printed manuals and
  104. echo         other incentives.
  105. echo  
  106. echo         But even those that don't offer incentives still deserve your
  107. echo         financial support  and encouragement  for the  work they have
  108. echo         done.  This is  your moral obligation if you are  using their
  109. echo         program. But beyond being an obligation, it is an  investment
  110. echo         in the future of "shareware"  for which you will be  rewarded
  111. echo         with more and better programs as a result of your support.
  112. echo  
  113. echo  
  114. pause
  115. cls
  116. if exist read*.* dir read*.*
  117. if exist manual*.* dir manual*.*
  118. if exist *.man dir *.man
  119. if exist *.txt dir *.txt
  120. if exist *.doc dir *.doc
  121. echo  
  122. echo       If any files are listed above, these are the ones to TYPE first
  123. echo       (eg: TYPE READ.ME); otherwise, just try running the program.
  124.